home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / ziodev.c < prev    next >
C/C++ Source or Header  |  1997-07-19  |  11KB  |  397 lines

  1. /* Copyright (C) 1993, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ziodev.c */
  20. /* Standard IODevice implementation */
  21. #include "memory_.h"
  22. #include "stdio_.h"
  23. #include "string_.h"
  24. #include "ghost.h"
  25. #include "gp.h"
  26. #include "gpcheck.h"
  27. #include "gsstruct.h"            /* for registering root */
  28. #include "errors.h"
  29. #include "oper.h"
  30. #include "stream.h"
  31. #include "ialloc.h"
  32. #include "ivmspace.h"
  33. #include "gxiodev.h"            /* must come after stream.h */
  34.                     /* and before files.h */
  35. #include "files.h"
  36. #include "store.h"
  37.  
  38. /* Complete the definition of the %os% device. */
  39. /* The open_file routine is exported for pipes and for %null. */
  40. int
  41. iodev_os_open_file(gx_io_device *iodev, const char *fname, uint len,
  42.   const char *file_access, stream **ps, gs_memory_t *mem)
  43. {    return file_open_stream(fname, len, file_access,
  44.                 file_default_buffer_size, ps,
  45.                 iodev->procs.fopen);
  46. }
  47.  
  48. /* Define the special devices. */
  49. #define iodev_special(dname, init, open)\
  50.   { dname, "Special",\
  51.      { init, open, iodev_no_open_file, iodev_no_fopen, iodev_no_fclose,\
  52.        iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status,\
  53.        iodev_no_enumerate_files, NULL, NULL,\
  54.        iodev_no_get_params, iodev_no_put_params\
  55.      }\
  56.   }
  57.  
  58. #define stdin_buf_size 128
  59. private ref ref_stdin;
  60. bool gs_stdin_is_interactive;    /* exported for command line only */
  61. private iodev_proc_init(stdin_init);
  62. private iodev_proc_open_device(stdin_open);
  63. gx_io_device gs_iodev_stdin =
  64.   iodev_special("%stdin%", stdin_init, stdin_open);
  65.  
  66. #define stdout_buf_size 128
  67. private ref ref_stdout;
  68. private iodev_proc_init(stdout_init);
  69. private iodev_proc_open_device(stdout_open);
  70. gx_io_device gs_iodev_stdout =
  71.   iodev_special("%stdout%", stdout_init, stdout_open);
  72.  
  73. #define stderr_buf_size 128
  74. private ref ref_stderr;
  75. private iodev_proc_init(stderr_init);
  76. private iodev_proc_open_device(stderr_open);
  77. gx_io_device gs_iodev_stderr =
  78.   iodev_special("%stderr%", stderr_init, stderr_open);
  79.  
  80. #define lineedit_buf_size 20        /* initial size, not fixed size */
  81. private iodev_proc_open_device(lineedit_open);
  82. gx_io_device gs_iodev_lineedit =
  83.   iodev_special("%lineedit%", iodev_no_init, lineedit_open);
  84.  
  85. private iodev_proc_open_device(statementedit_open);
  86. gx_io_device gs_iodev_statementedit =
  87.   iodev_special("%statementedit%", iodev_no_init, statementedit_open);
  88.  
  89. /* ------ Operators ------ */
  90.  
  91. /* <int> .getiodevice <string> */
  92. private int
  93. zgetiodevice(register os_ptr op)
  94. {    gx_io_device *iodev;
  95.     const byte *dname;
  96.     check_type(*op, t_integer);
  97.     if ( op->value.intval != (int)op->value.intval )
  98.         return_error(e_rangecheck);
  99.     iodev = gs_getiodevice((int)(op->value.intval));
  100.     if ( iodev == 0 )        /* index out of range */
  101.         return_error(e_rangecheck);
  102.     dname = (const byte *)iodev->dname;
  103.     make_const_string(op, a_readonly | avm_foreign,
  104.               strlen((const char *)dname), dname);
  105.     return 0;
  106. }
  107.  
  108. /* ------- %stdin, %stdout, and %stderr ------ */
  109.  
  110. /*
  111.  * According to Adobe, it is legal to close the %std... files and then
  112.  * re-open them later.  However, the re-opened file object is not 'eq' to
  113.  * the original file object (in our implementation, it has a different
  114.  * read_id or write_id).
  115.  */
  116.  
  117. private gs_gc_root_t stdin_root, stdout_root, stderr_root;
  118.  
  119. private int
  120.   s_stdin_read_process(P4(stream_state *, stream_cursor_read *,
  121.     stream_cursor_write *, bool));
  122.  
  123. private int
  124. stdin_init(gx_io_device *iodev, gs_memory_t *mem)
  125. {    static ref *pstdin = &ref_stdin;
  126.     make_file(&ref_stdin, a_readonly | avm_system, 1, invalid_file_entry);
  127.     gs_stdin_is_interactive = true;
  128.     gs_register_ref_root(mem, &stdin_root,
  129.                  (void **)&pstdin, "ref_stdin");
  130.     return 0;
  131. }
  132.  
  133. /* Read from stdin into the buffer. */
  134. /* If interactive, only read one character. */
  135. private int
  136. s_stdin_read_process(stream_state *st, stream_cursor_read *ignore_pr,
  137.   stream_cursor_write *pw, bool last)
  138. {    FILE *file = ((stream *)st)->file;    /* hack for file streams */
  139.     int wcount = (int)(pw->limit - pw->ptr);
  140.     int count;
  141.  
  142.     if ( wcount > 0 )
  143.       {    if ( gs_stdin_is_interactive )
  144.           wcount = 1;
  145.         count = fread(pw->ptr + 1, 1, wcount, file);
  146.         if ( count < 0 )
  147.           count = 0;
  148.         pw->ptr += count;
  149.       }
  150.     else
  151.       count = 0;        /* return 1 if no error/EOF */
  152.     process_interrupts();
  153.     return (ferror(file) ? ERRC : feof(file) ? EOFC : count == wcount ? 1 : 0);
  154. }
  155.  
  156. int
  157. iodev_stdin_open(gx_io_device *iodev, const char *access, stream **ps,
  158.   gs_memory_t *mem)
  159. {    stream *s;
  160.     if ( !streq1(access, 'r') )
  161.       return_error(e_invalidfileaccess);
  162.     if ( !file_is_valid(s, &ref_stdin) )
  163.       {
  164.         /****** stdin SHOULD NOT LINE-BUFFER ******/
  165.  
  166.         gs_memory_t *mem = imemory_system;
  167.         byte *buf;
  168.         s = file_alloc_stream(mem, "stdin_open(stream)");
  169.         /* We want stdin to read only one character at a time, */
  170.         /* but it must have a substantial buffer, in case it is used */
  171.         /* by a stream that requires more than one input byte */
  172.         /* to make progress. */
  173.         buf = gs_alloc_bytes(mem, stdin_buf_size,
  174.                      "stdin_open(buffer)");
  175.         if ( s == 0 || buf == 0 )
  176.           return_error(e_VMerror);
  177.         sread_file(s, gs_stdin, buf, stdin_buf_size);
  178.         s->procs.process = s_stdin_read_process;
  179.         s->save_close = s_std_null;
  180.         s->procs.close = file_close_file;
  181.         make_file(&ref_stdin, a_readonly | avm_system,
  182.               s->read_id, s);
  183.         *ps = s;
  184.         return 1;
  185.       }
  186.     *ps = s;
  187.     return 0;
  188. }
  189. private int
  190. stdin_open(gx_io_device *iodev, const char *access, stream **ps,
  191.   gs_memory_t *mem)
  192. {    int code = iodev_stdin_open(iodev, access, ps, mem);
  193.     return min(code, 0);
  194. }
  195. /* This is the public routine for getting the stdin stream. */
  196. int
  197. zget_stdin(stream **ps)
  198. {    stream *s;
  199.     if ( file_is_valid(s, &ref_stdin) )
  200.       {    *ps = s;
  201.         return 0;
  202.       }
  203.     return (*gs_iodev_stdin.procs.open_device)(&gs_iodev_stdin,
  204.                            "r", ps, imemory_system);
  205. }
  206.  
  207. private int
  208. stdout_init(gx_io_device *iodev, gs_memory_t *mem)
  209. {    static ref *pstdout = &ref_stdout;
  210.     make_file(&ref_stdout, a_all | avm_system, 1, invalid_file_entry);
  211.     gs_register_ref_root(mem, &stdout_root,
  212.                  (void **)&pstdout, "ref_stdout");
  213.     return 0;
  214. }
  215.  
  216. int
  217. iodev_stdout_open(gx_io_device *iodev, const char *access, stream **ps,
  218.   gs_memory_t *mem)
  219. {    stream *s;
  220.     if ( !streq1(access, 'w') )
  221.       return_error(e_invalidfileaccess);
  222.     if ( !file_is_valid(s, &ref_stdout) )
  223.       {    gs_memory_t *mem = imemory_system;
  224.         byte *buf;
  225.         s = file_alloc_stream(mem, "stdout_open(stream)");
  226.         buf = gs_alloc_bytes(mem, stdout_buf_size,
  227.                      "stdout_open(buffer)");
  228.         if ( s == 0 || buf == 0 )
  229.           return_error(e_VMerror);
  230.         swrite_file(s, gs_stdout, buf, stdout_buf_size);
  231.         s->save_close = s->procs.flush;
  232.         s->procs.close = file_close_file;
  233.         make_file(&ref_stdout, a_write | avm_system, s->write_id, s);
  234.         *ps = s;
  235.         return 1;
  236.       }
  237.     *ps = s;
  238.     return 0;
  239. }
  240. private int
  241. stdout_open(gx_io_device *iodev, const char *access, stream **ps,
  242.   gs_memory_t *mem)
  243. {    int code = iodev_stdout_open(iodev, access, ps, mem);
  244.     return min(code, 0);
  245. }
  246. /* This is the public routine for getting the stdout stream. */
  247. int
  248. zget_stdout(stream **ps)
  249. {    stream *s;
  250.     if ( file_is_valid(s, &ref_stdout) )
  251.       {    *ps = s;
  252.         return 0;
  253.       }
  254.     return (*gs_iodev_stdout.procs.open_device)(&gs_iodev_stdout,
  255.                             "w", ps, imemory_system);
  256. }
  257.  
  258. private int
  259. stderr_init(gx_io_device *iodev, gs_memory_t *mem)
  260. {    static ref *pstderr = &ref_stderr;
  261.     make_file(&ref_stderr, a_all | avm_system, 1, invalid_file_entry);
  262.     gs_register_ref_root(mem, &stderr_root,
  263.                  (void **)&pstderr, "ref_stderr");
  264.     return 0;
  265. }
  266.  
  267. int
  268. iodev_stderr_open(gx_io_device *iodev, const char *access, stream **ps,
  269.   gs_memory_t *mem)
  270. {    stream *s;
  271.     if ( !streq1(access, 'w') )
  272.       return_error(e_invalidfileaccess);
  273.     if ( !file_is_valid(s, &ref_stderr) )
  274.       {    gs_memory_t *mem = imemory_system;
  275.         byte *buf;
  276.         s = file_alloc_stream(mem, "stderr_open(stream)");
  277.         buf = gs_alloc_bytes(mem, stderr_buf_size,
  278.                      "stderr_open(buffer)");
  279.         if ( s == 0 || buf == 0 )
  280.           return_error(e_VMerror);
  281.         swrite_file(s, gs_stderr, buf, stderr_buf_size);
  282.         s->save_close = s->procs.flush;
  283.         s->procs.close = file_close_file;
  284.         make_file(&ref_stderr, a_write | avm_system, s->write_id, s);
  285.         *ps = s;
  286.         return 1;
  287.       }
  288.     *ps = s;
  289.     return 0;
  290. }
  291. private int
  292. stderr_open(gx_io_device *iodev, const char *access, stream **ps,
  293.   gs_memory_t *mem)
  294. {    int code = iodev_stderr_open(iodev, access, ps, mem);
  295.     return min(code, 0);
  296. }
  297. /* This is the public routine for getting the stderr stream. */
  298. int
  299. zget_stderr(stream **ps)
  300. {    stream *s;
  301.     if ( file_is_valid(s, &ref_stderr) )
  302.       {    *ps = s;
  303.         return 0;
  304.       }
  305.     return (*gs_iodev_stderr.procs.open_device)(&gs_iodev_stderr,
  306.                             "w", ps, imemory_system);
  307. }
  308.  
  309. /* ------ %lineedit and %statementedit ------ */
  310.  
  311. private int
  312. lineedit_open(gx_io_device *iodev, const char *access, stream **ps,
  313.   gs_memory_t *mem)
  314. {    uint count = 0;
  315.     bool in_eol = false;
  316.     int code;
  317.     stream *s;
  318.     stream *ins;
  319.     byte *buf;
  320.     uint buf_size = lineedit_buf_size;
  321.  
  322.     if ( strcmp(access, "r") )
  323.       return_error(e_invalidfileaccess);
  324.     s = file_alloc_stream(mem, "lineedit_open(stream)");
  325.     if ( s == 0 )
  326.       return_error(e_VMerror);
  327.     code = (gs_iodev_stdin.procs.open_device)(&gs_iodev_stdin, access,
  328.                           &ins, mem);
  329.     if ( code < 0 )
  330.       return code;
  331.     buf = gs_alloc_string(mem, buf_size, "lineedit_open(buffer)");
  332.     if ( buf == 0 )
  333.       return_error(e_VMerror);
  334. rd:    code = zreadline_from(ins, buf, buf_size, &count, &in_eol);
  335.     switch ( code )
  336.       {
  337.       case EOFC:
  338.         code = gs_note_error(e_undefinedfilename);
  339.         /* falls through */
  340.       case 0:
  341.         break;
  342.       default:
  343.         code = gs_note_error(e_ioerror);
  344.         break;
  345.       case 1:        /* filled buffer */
  346.         { uint nsize;
  347.           byte *nbuf;
  348.  
  349. #if arch_ints_are_short
  350.           if ( nsize == max_uint )
  351.         { code = gs_note_error(e_limitcheck);
  352.           break;
  353.         }
  354.           else if ( nsize >= max_uint / 2 )
  355.         nsize = max_uint;
  356.           else
  357. #endif
  358.         nsize = buf_size * 2;
  359.           nbuf = gs_resize_string(mem, buf, buf_size, nsize,
  360.                       "lineedit_open(grow buffer)");
  361.           if ( nbuf == 0 )
  362.         { code = gs_note_error(e_VMerror);
  363.           break;
  364.         }
  365.           buf = nbuf;
  366.           buf_size = nsize;
  367.           goto rd;
  368.         }
  369.       }
  370.     if ( code != 0 )
  371.       { gs_free_string(mem, buf, buf_size, "lineedit_open(buffer)");
  372.         return code;
  373.       }
  374.     buf = gs_resize_string(mem, buf, buf_size, count,
  375.                    "lineedit_open(resize buffer)");
  376.     if ( buf == 0 )
  377.       return_error(e_VMerror);
  378.     sread_string(s, buf, count);
  379.     s->save_close = s->procs.close;
  380.     s->procs.close = file_close_disable;
  381.     *ps = s;
  382.     return 0;
  383. }
  384.  
  385. private int
  386. statementedit_open(gx_io_device *iodev, const char *access, stream **ps,
  387.   gs_memory_t *mem)
  388. {    /* NOT IMPLEMENTED PROPERLY YET */
  389.     return lineedit_open(iodev, access, ps, mem);
  390. }
  391.  
  392. /* ------ Initialization procedure ------ */
  393.  
  394. BEGIN_OP_DEFS(ziodev_op_defs) {
  395.     {"1.getiodevice", zgetiodevice},
  396. END_OP_DEFS(0) }
  397.